Jira Cloud Agentic Workflow
Prepare Issue Fields — Jira Cloud Automation Workflow
Converts unstructured element content into structured Jira issue fields using LLM
sidebutton install Jira Cloud Inputs
- element_text
- string
- page_url
- string
- page_title
- string
Allowed Domains
Unrestricted — no domain lock enforced.
Step Summary
2 steps using step types: llm.generatevariable.set
.
Workflow Definition
YAML source for the jira_prepare_issue_fields.yaml workflow. This is the complete definition executed by the SideButton MCP server when Jira Cloud agents run this automation.
id: jira_prepare_issue_fields
title: "Prepare Issue Fields"
description: "Converts unstructured element content into structured Jira issue fields using LLM"
category:
level: primitive
domain: support
params:
element_text: string
page_url: string
page_title: string
steps:
- type: llm.generate
prompt: |
Convert this webpage element into a Jira issue summary and description.
Element content:
{{element_text}}
Page: {{page_title}} ({{page_url}})
Output ONLY valid JSON (no markdown, no explanation):
{
"summary": "Brief title, max 100 chars",
"description": "Detailed description with context"
}
Rules:
- Summary: concise, specific, actionable (e.g. "Review Fireflies HubSpot integration guide")
- Description: include source page URL and relevant details from the element
as: issue_fields_json
- type: variable.set
name: issue_fields
value: "{{issue_fields_json}}"
How To Run
Install the Jira Cloud knowledge pack into your SideButton agent, then dispatch this workflow by its ID jira_prepare_issue_fields.yaml. Agents invoke it directly via the MCP protocol or through the portal.